Using `git blame` to determine the relative "ownership" of a fileEdit
$ git blame -t $FILE | \
cut -f 2 -d '(' | \
cut -f 1 -d ')' | \
sed -e 's/[[:digit:]]\+.\+//' | \
sort | \
uniq -c | \
sort -rn
$ git blame -t $FILE | \
cut -f 2 -d '(' | \
cut -f 1 -d ')' | \
sed -e 's/[[:digit:]]\+.\+//' | \
sort | \
uniq -c | \
sort -rn